# reports on the full path names of an executable
base::Sys.which("quarto")
# quarto version
quarto::quarto_version()2) Quarto projects and websites
Caution
Website construction in progress…
What is Quarto and is it on my machine?
It is not an R packg, it’s its own program to install… but RStudio (after some verison) install it as a bundled piece…
Markdown divs
Rather than write out the HTML, you can use “fenced Div blocks”, which somewhat resemble code chunks. These Div blocks use the following syntax, where # denotes the ID, and . denotes a class.
Example:
- this (markdown) is =
::: {#hello .greeting .message style="color: red;"}
Hello **world**!
:::- to this (HTLM)
<div id="hello" class="greeting">
Hello world!
</div>- and this (markdown) is =
::: {style="color: red; border: solid black;"}
Goodbye, world.
:::Goodbye, world.
- and to this (HTLM)
<div style="color: red; border: solid black;">
Goodbye, world.
</div>Quarto themes
- Mara Averick’s Blog post on theme / scss** Down the front-end rabbit hole